DC.prependWithin(domElementOrMarkupStringOrCSSSelector) Description: Inserts a DOM element, markup string, or CSS selector referenced element at the beginning of DC.container. Returns: DC Object. Example: // Insert a DOM element at the beginning of DC.container. DC.prependWithin(domElement); // Insert a markup string element at the beginning of DC.container. DC.prependWithin('
Here we are now, entertain us.
'); // Insert one element referenced by a CSS selector at the beginning of DC.container. DC.prependWithin("#myTargetNodeToMove");